home *** CD-ROM | disk | FTP | other *** search
/ Mac Format 1995 June / MacFormat 25.iso / Shareware City / Developers / OutOfPhase1.1 Source / OutOfPhase Folder / MiscInfo.h < prev    next >
Text File  |  1995-01-11  |  1KB  |  38 lines

  1. /* MiscInfo.h for Out Of Phase */
  2.  
  3. #ifndef Included_MiscInfo_h
  4. #define Included_MiscInfo_h
  5.  
  6. /********************************************************************************/
  7. /* control flags */
  8.  
  9. /* to enable one of the following debugging features, but a 1 in the definition. */
  10. /* to disable, put a 0.  Do NOT use macros True and False since they may not be */
  11. /* defined when this file is read. */
  12. #define DEBUG (0)  /* debugging macros */
  13. #define ALWAYSRESUME (0)  /* resume button availability */
  14. #define DEBUGGER_PRESENT (0)  /* break points in PRERR */
  15. #define AUDIT (0)  /* audit file generation */
  16. #define AUDITFLUSHING (0)  /* flush AUDIT file after each write (very slow) */
  17. #define MEMDEBUG (0)  /* pointer allocation checking */
  18.  
  19.  
  20. /********************************************************************************/
  21. /* application information */
  22.  
  23. #define VersionString "1.1"
  24.  
  25. #define ApplicationCreator ('\xba'*(1L<<24) + 'S'*(1L<<16) + 'y'*(1L<<8) + 'n')
  26. #define ApplicationFileType ('\xba'*(1L<<24) + 'S'*(1L<<16) + 'y'*(1L<<8) + 'd')
  27.  
  28.  
  29. /********************************************************************************/
  30. /* audit file creator */
  31.  
  32. #define AUDITCREATOR ('KAHL') /* THINK C creator */
  33.  
  34.  
  35. /********************************************************************************/
  36.  
  37. #endif
  38.